style.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .FromCom {
  2. width: 100%;
  3. height: auto;
  4. background-color: #1f1f1f;
  5. padding: 0 .18rem;
  6. .passwordInput {
  7. margin: .13rem 0 .04rem;
  8. padding: 0 .23rem;
  9. .iconfont {
  10. margin-left: .05rem;
  11. font-size: .18rem;
  12. color: #000;
  13. }
  14. }
  15. .phoneInput {
  16. .after {
  17. margin-left: .1rem;
  18. font-size: .14rem;
  19. color: #868686;
  20. }
  21. input {
  22. padding-left: .14rem;
  23. -webkit-box-sizing: border-box;
  24. box-sizing: border-box;
  25. }
  26. }
  27. input {
  28. flex: 1;
  29. background-color: #494949;
  30. height: .48rem;
  31. line-height: auto;
  32. color: #868686;
  33. font-size: .14rem;
  34. outline: none;
  35. &::placeholder {
  36. color: #868686;
  37. }
  38. }
  39. .btnContent {
  40. margin: .29rem 0 .19rem;
  41. .tips {
  42. text-align: center;
  43. margin-bottom: .06rem;
  44. color: #e53535;
  45. font-size: 0.12rem;
  46. }
  47. }
  48. .link {
  49. margin-bottom: .2rem;
  50. display: flex;
  51. -webkit-box-pack: justify;
  52. -ms-flex-pack: justify;
  53. justify-content: space-between;
  54. a {
  55. font-size: .12rem;
  56. color: #fff;
  57. text-align: center;
  58. display: block;
  59. &.active {
  60. width: 100%;
  61. }
  62. }
  63. }
  64. }
  65. .FromCom .phoneInput, .FromCom .passwordInput {
  66. width: 100%;
  67. height: auto;
  68. background-color: #494949;
  69. border-radius: 4px;
  70. display: flex;
  71. align-items: center;
  72. justify-content: center;
  73. overflow: hidden;
  74. margin-top: .16rem;
  75. }